home *** CD-ROM | disk | FTP | other *** search
-
- /* stropmodule.c */
- static object *split_whitespace ( char *s , int len , int maxsplit );
- static object *strop_splitfields ( object *self , object *args );
- static object *strop_joinfields ( object *self , object *args );
- static object *strop_find ( object *self , object *args );
- static object *strop_rfind ( object *self , object *args );
- static object *do_strip ( object *args , int striptype );
- static object *strop_strip ( object *self , object *args );
- static object *strop_lstrip ( object *self , object *args );
- static object *strop_rstrip ( object *self , object *args );
- static object *strop_lower ( object *self , object *args );
- static object *strop_upper ( object *self , object *args );
- static object *strop_capitalize ( object *self , object *args );
- static object *strop_swapcase ( object *self , object *args );
- static object *strop_atoi ( object *self , object *args );
- static object *strop_atol ( object *self , object *args );
- static object *strop_atof ( object *self , object *args );
- static PyObject *strop_maketrans ( PyObject *self , PyObject *args );
- static object *strop_translate ( object *self , object *args );
-